home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ADA Programming Guide
/
ADA Programming Guide.iso
/
ada_pcdp
/
adas
/
adas.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1996-01-30
|
284b
|
18 lines
program adas;
uses global, compile, interp;
var ok: boolean;
ch: char;
begin
repeat
write('File: ');
readln(inputfile);
ch := inputfile[1];
ok := false;
if ch >= 'A' then
compiler(ok);
if ok then interpret
until ch < 'A'
end.